function OpenWindow(filename, fullscr) { var temp = "fullscreen=no,menubar=no,toolbar=no,location=no,status=no,scrollbars=no,resizable=no,width=500,height=250"; if (fullscr == 'yes') { temp = "fullscreen=no,menubar=yes,toolbar=yes,location=yes,status=yes,scrollbars=yes"; } displayWindow = window.open(filename,"displayWindow",temp); } function setCurrentField(theForm, currentField) { //alert("currentField: " + currentField + ", form: " + theForm.name); theForm.LAST_ENTERED_FIELD.value=currentField; }